Tables [dbo].[Cmty_Email_Notification]
Properties
PropertyValue
Created3:11:58 PM Friday, January 07, 2011
Last Modified11:40:01 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow NullsDefault
Cluster Primary Key PK_Cmty_Email_Notification: COMMUNITY_SEQ\ID\NOTIFICATION_TYPECOMMUNITY_SEQint4
No
((0))
Cluster Primary Key PK_Cmty_Email_Notification: COMMUNITY_SEQ\ID\NOTIFICATION_TYPEIDvarchar(10)10
No
('')
Cluster Primary Key PK_Cmty_Email_Notification: COMMUNITY_SEQ\ID\NOTIFICATION_TYPENOTIFICATION_TYPEvarchar(5)5
No
('')
NOTIFICATION_FREQvarchar(5)5
No
('')
STATUSvarchar(5)5
No
('')
TIME_STAMPtimestamp8
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_Cmty_Email_Notification: COMMUNITY_SEQ\ID\NOTIFICATION_TYPEPK_Cmty_Email_NotificationCOMMUNITY_SEQ, ID, NOTIFICATION_TYPE
Yes
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[Cmty_Email_Notification]
(
[COMMUNITY_SEQ] [int] NOT NULL CONSTRAINT [DF_Cmty_Email_Notification_COMMUNITY_SEQ] DEFAULT ((0)),
[ID] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_Cmty_Email_Notification_ID] DEFAULT (''),
[NOTIFICATION_TYPE] [varchar] (5) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_Cmty_Email_Notification_NOTIFICATION_TYPE] DEFAULT (''),
[NOTIFICATION_FREQ] [varchar] (5) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_Cmty_Email_Notification_NOTIFICATION_FREQ] DEFAULT (''),
[STATUS] [varchar] (5) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_Cmty_Email_Notification_STATUS] DEFAULT (''),
[TIME_STAMP] [timestamp] NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[Cmty_Email_Notification] ADD CONSTRAINT [PK_Cmty_Email_Notification] PRIMARY KEY CLUSTERED ([COMMUNITY_SEQ], [ID], [NOTIFICATION_TYPE]) ON [PRIMARY]
GO
GRANT REFERENCES ON  [dbo].[Cmty_Email_Notification] TO [IMIS]
GRANT SELECT ON  [dbo].[Cmty_Email_Notification] TO [IMIS]
GRANT INSERT ON  [dbo].[Cmty_Email_Notification] TO [IMIS]
GRANT DELETE ON  [dbo].[Cmty_Email_Notification] TO [IMIS]
GRANT UPDATE ON  [dbo].[Cmty_Email_Notification] TO [IMIS]
GO
Uses
Used By